home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / demos / r-z / stormc-demo / include / clib / mathffp_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  1KB  |  47 lines

  1. #ifndef  CLIB_MATHFFP_PROTOS_H
  2. #define  CLIB_MATHFFP_PROTOS_H
  3.  
  4. /*
  5. **    $VER: mathffp_protos.h 1.4 (3.5.90)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. LONG SPFix( FLOAT parm );
  23. FLOAT SPFlt( long integer );
  24. LONG SPCmp( FLOAT leftParm, FLOAT rightParm );
  25. LONG SPTst( FLOAT parm );
  26. FLOAT SPAbs( FLOAT parm );
  27. FLOAT SPNeg( FLOAT parm );
  28. FLOAT SPAdd( FLOAT leftParm, FLOAT rightParm );
  29. FLOAT SPSub( FLOAT leftParm, FLOAT rightParm );
  30. FLOAT SPMul( FLOAT leftParm, FLOAT rightParm );
  31. FLOAT SPDiv( FLOAT leftParm, FLOAT rightParm );
  32. /*--- functions in V33 or higher (Release 1.2) ---*/
  33. FLOAT SPFloor( FLOAT parm );
  34. FLOAT SPCeil( FLOAT parm );
  35.  
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39.  
  40. #ifdef STORMPRAGMAS
  41. #ifndef _INCLUDE_PRAGMA_MATHFFP_LIB_H
  42. #include <pragma/mathffp_lib.h>
  43. #endif
  44. #endif
  45.  
  46. #endif     /* CLIB_MATHFFP_PROTOS_H */
  47.